home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2001 September / PC-WELT 9-2001.ISO / software / hw / brennen / flask_src.exe / Input / DVDselector.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-05-11  |  1.3 KB  |  50 lines

  1. /* 
  2.  *  DVDselector.h
  3.  *
  4.  *    Copyright (C) Alberto Vigata - January 2000
  5.  *
  6.  *  This file is part of FlasKMPEG, a free MPEG to MPEG/AVI converter
  7.  *    
  8.  *  FlasKMPEG is free software; you can redistribute it and/or modify
  9.  *  it under the terms of the GNU General Public License as published by
  10.  *  the Free Software Foundation; either version 2, or (at your option)
  11.  *  any later version.
  12.  *   
  13.  *  FlasKMPEG is distributed in the hope that it will be useful,
  14.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  *  GNU General Public License for more details.
  17.  *   
  18.  *  You should have received a copy of the GNU General Public License
  19.  *  along with GNU Make; see the file COPYING.  If not, write to
  20.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  21.  *
  22.  */
  23.  
  24.  
  25. #ifndef DVD_SELECTOR_H
  26. #define DVD_SELECTOR_H
  27.  
  28.  
  29. #include "..\misc\selectordialog.h"
  30. #define DVDSEL_AC3   4
  31. #define DVDSEL_MPEG  0
  32.  
  33. struct TDVDSelector
  34. {
  35.     int selected_pgc;
  36.     int selected_angle;
  37.  
  38.     int audio_type;
  39.     int selected_audio;
  40.     int has_audio;
  41.  
  42.     int selected_subpic;
  43.     int has_subpic;
  44. };
  45.  
  46. OpenDVDSelector(HWND hWnd, HINSTANCE hInst,CIFOParser *ifo, TDVDSelector *sel_info);
  47.  
  48.  
  49.  
  50. #endif DVD_SELECTOR_H